html {
  width: 100%;
  height: 100%;
}
body {
  width: 100%;
  height: 100%;
  position: relative;
  margin: 0;
}
.body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
@media (max-width: 760px) {
  .body {
    height: auto;
    overflow: visible;
  }
}
.page {
  width: 100%;
  height: 100%;
  transition: 1200ms;
  transform: translateY(0px);
}
.page_1,
.page_2,
.page_3,
.page_4,
.page_5,
.page_6 {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 760px) {
  .page {
    width: 100%;
    height: auto;
    padding-bottom: 102px;
    min-height: calc(100% - 102px);
  }
  .page_1,
  .page_2,
  .page_3,
  .page_4,
  .page_5,
  .page_6 {
    height: auto;
    display: block;
    overflow: hidden;
  }
}
.menu {
  width: 120px;
  position: fixed;
  left: 10px;
  top: 50px;
  z-index: 10;
  box-shadow: 0 0 2px rgba(0,0,0,0.5);
}
.menu .logo {
  width: calc(100% - 20px);
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0b8d44;
}
.menu .logo img {
  display: block;
  width: 100%;
}
.menu .image {
  width: calc(100% - 20px);
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  /*background: rgba(255, 255, 255, 0.92);*/
  background-color: #f0f0f0;
}
.menu .image img {
  display: block;
  width: 100%;
}
.menu .menu_box {
  /*background: rgba(255, 255, 255, 0.92);*/
  background-color: #f5f5f5;
}
.menu ul {
  width: 100%;
  padding: 0;
  margin: 0;
}
.menu ul .menu_active a {
  color: white;
}
.menu ul .menu_active:before {
  content: "";
  width: 100%;
  height: 30px;
  padding: 2px 4px;
  background-color: #f29500;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: -4px;
  margin-top: -17px;
}
.menu ul li {
  list-style: none;
  width: 100%;
  padding: 20px 0;
  position: relative;
}
.menu ul li a {
  width: 100%;
  position: relative;
  z-index: 20;
  display: block;
  text-align: center;
  text-decoration: none;
  color: black;
  font-size: 18px;
}
.menu ul li ul {
  width: 100%;
  padding: 0 10px;
  height: auto;
  display: none;
  position: absolute;
  left: 120px;
  top: 0;
}
.menu ul li ul li {
  padding: 10px 0;
  /*background: rgba(255, 255, 255, 0.92);*/
  background-color: #f0f0f0;
}
.menu ul li ul li a {
  font-size: 16px;
  color: black;
}
.menu ul li ul li:hover {
  background-color: #f29500;
}
.menu ul li ul li:hover a {
  color: white;
}
.menu ul li ul li:hover:before {
  display: none;
}
.menu ul li:hover:before {
  content: "";
  width: 100%;
  height: 30px;
  padding: 2px 4px;
  background-color: #f29500;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: -4px;
  margin-top: -17px;
}
.menu ul li:hover a {
  color: white;
}
.menu ul li:hover ul {
  display: block;
}
.menu ul li:hover ul li a {
  color: black;
}
@media (max-width: 760px) {
  .menu {
    display: none;
  }
}
.href_btn {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 40px;
  width: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.href_btn .btn {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 4px solid white;
  margin: 10px 0;
}
.href_btn .btn_active {
  width: 10px;
  height: 10px;
  background-color: #f29500;
  border: 8px solid #0d8b46;
  transition: 1000ms;
}
.page_1 {
  flex-direction: column;
  overflow: visible;
}
.page_1 .logo {
  width: 100%;
  height: 60px;
  display: none;
  justify-content: center;
  align-items: center;
}
.page_1 .logo img {
  width: 150px;
  display: block;
}
.page_1 .mySwiper2 {
  width: 100%;
  height: 100%;
}
.page_1 .mySwiper2 .swiper-slide {
  overflow: hidden;
}
.page_1 .mySwiper2 .swiper-slide .b {
  display: none;
}
.page_1 .mySwiper2 .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 760px) {
  .page_1 .logo {
    display: flex;
  }
  .page_1 .mySwiper2 {
    height: auto;
  }
  .page_1 .mySwiper2 .swiper-slide .b {
    display: block;
  }
  .page_1 .mySwiper2 .swiper-slide .a {
    display: none;
  }
  .page_1 .mySwiper2 .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: initial;
  }
}
.menu2 {
  display: none;
  width: calc(100% - 20px);
  height: 100px;
  padding: 0 10px;
  background-color: #0b8c44;
}
.menu2 ul {
  width: 100%;
  height: 100px;
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
.menu2 ul .menu_active a {
  color: #f29500;
  font-weight: 600;
}
.menu2 ul li {
  width: calc((100% - 3px) / 4);
  height: 50px;
  list-style: none;
  position: relative;
}
.menu2 ul li a {
  width: 100%;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  display: block;
  color: white;
  font-size: 16px;
  line-height: 50px;
}
.menu2 ul li ul {
  display: none;
  height: auto;
  position: absolute;
  z-index: 5;
  top: 50px;
  left: 0;
}
.menu2 ul li ul li {
  z-index: 12;
  width: 100%;
  height: auto;
  padding: 5px 0;
  background-color: white;
  border-bottom: 1px solid #f29500;
}
.menu2 ul li ul li a {
  z-index: 12;
  color: black!important;
  font-size: 14px;
  line-height: 22px;
}
.menu2 ul li ul li:hover {
  background-color: #f29500;
}
.menu2 ul li ul li:nth-last-child(1) {
  border-bottom: 0;
}
.menu2 ul li ul li:nth-child(2n) {
  width: 100%;
  height: auto;
}
.menu2 ul li ul li:nth-child(8) {
  display: block;
}
.menu2 ul li ul li:nth-child(16) {
  display: block;
}
.menu2 ul li ul:before {
  display: none;
}
.menu2 ul li:hover a {
  color: #f29500;
  font-weight: 600;
}
.menu2 ul li:hover ul {
  display: flex;
}
.menu2 ul li:nth-child(2n) {
  width: 1px;
  height: 26px;
  background-color: white;
}
.menu2 ul li:nth-child(8) {
  display: none;
}
.menu2 ul li:nth-child(16) {
  display: none;
}
.menu2 ul:before {
  content: "";
  width: 88%;
  height: 1px;
  background-color: white;
  position: absolute;
  top: 49.5px;
  left: 50%;
  margin-left: -44%;
}
@media (max-width: 760px) {
  .menu2 {
    display: block;
  }
}
@media (max-width: 540px) {
  .menu2 ul:before {
    width: 96%;
    margin-left: -48%;
  }
}
.page_2 {
  background: url(../img/005.jpg) no-repeat;
  background-size: cover;
}
.page_2 .our {
  width: 1200px;
  display: flex;
  justify-content: space-between;
}
.page_2 .our .title {
  width: 220px;
}
.page_2 .our .title .title_box {
  width: 220px;
  height: 220px;
  background: url(../img/003.png) no-repeat;
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page_2 .our .title .title_box span {
  display: block;
  width: 80px;
  font-size: 34px;
  color: white;
  text-align: center;
}
.page_2 .our .our_box {
  width: calc(100% - 240px);
}
.page_2 .our .our_box p {
  margin: 0;
  width: 100%;
  text-align: justify;
  text-indent: 2em;
  line-height: 46px;
  font-size: 22px;
}
.page_2 .our .our_box .more {
  width: 100%;
  margin: 40px 0;
  display: flex;
  justify-content: flex-end;
}
.page_2 .our .our_box .more a {
  display: block;
  width: 70px;
  height: 20px;
  margin-right: 40px;
  background: url(../img/004.png) no-repeat;
  background-size: 100% 100%;
}
.page_2 .our .our_box .our_number {
  width: 100%;
}
.page_2 .our .our_box .our_number .on_box {
  width: 90%;
  margin: 0 5%;
  padding: 26px 0;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}
.page_2 .our .our_box .our_number .on_box .on_list {
  position: relative;
  padding-left: 30px;
  color: #f29500;
  padding-right: 10%;
}
.page_2 .our .our_box .our_number .on_box .on_list .text {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.page_2 .our .our_box .our_number .on_box .on_list .text strong {
  font-size: 48px;
}
.page_2 .our .our_box .our_number .on_box .on_list .text strong:nth-child(2) {
  font-size: 24px;
  margin-bottom: 8px;
}
.page_2 .our .our_box .our_number .on_box .on_list span {
  width: 100%;
  display: block;
  text-align: left;
  font-size: 24px;
}
.page_2 .our .our_box .our_number .on_box .on_list:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 100%;
  background-color: #f29500;
}
.page_2 .our .our_box .our_number .on_box .on_list:nth-last-child(1) {
  padding-right: 0;
}
@media (max-width: 1200px) {
  .page_2 .our {
    width: 94%;
    margin: 0 3%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .page_2 .our .title {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .page_2 .our .our_box {
    width: 100%;
  }
}
@media (max-width: 760px) {
  .page_2 .our {
    padding: 40px 0;
  }
  .page_2 .our .our_box .our_number .on_box {
    width: 100%;
    margin: 0;
    padding: 20px 0;
  }
  .page_2 .our .our_box .our_number .on_box .on_list {
    padding-left: 20px;
    padding-right: 5%;
  }
  .page_2 .our .our_box .our_number .on_box .on_list .text strong {
    font-size: 28px;
  }
  .page_2 .our .our_box .our_number .on_box .on_list .text strong:nth-child(2) {
    font-size: 16px;
    margin-bottom: 4px;
  }
  .page_2 .our .our_box .our_number .on_box .on_list span {
    font-size: 16px;
  }
  .page_2 .our .our_box .our_number .on_box .on_list:before {
    width: 10px;
  }
}
@media (max-width: 540px) {
  .page_2 .our .title .title_box {
    width: 120px;
    height: 120px;
  }
  .page_2 .our .title .title_box span {
    width: 50px;
    font-size: 24px;
  }
  .page_2 .our .our_box p {
    line-height: 30px;
    font-size: 18px;
  }
  .page_2 .our .our_box .more {
    margin: 20px 0;
  }
  .page_2 .our .our_box .our_number .on_box {
    width: 100%;
    margin: 0;
    padding: 20px 0;
  }
  .page_2 .our .our_box .our_number .on_box .on_list .text strong {
    font-size: 24px;
  }
  .page_2 .our .our_box .our_number .on_box .on_list .text strong:nth-child(2) {
    font-size: 14px;
    margin-bottom: 2px;
  }
  .page_2 .our .our_box .our_number .on_box .on_list span {
    font-size: 14px;
  }
  .page_2 .our .our_box .our_number .on_box .on_list:before {
    width: 10px;
  }
}
@media (max-width: 400px) {
  .page_2 .our .our_box .our_number .on_box .on_list {
    padding-right: 3%;
  }
  .page_2 .our .our_box .our_number .on_box .on_list .text strong {
    font-size: 22px;
  }
  .page_2 .our .our_box .our_number .on_box .on_list .text strong:nth-child(2) {
    font-size: 12px;
  }
  .page_2 .our .our_box .our_number .on_box .on_list span {
    font-size: 12px;
  }
}
.page_3 {
  background: url(../img/006.jpg) no-repeat;
  background-size: cover;
}
.page_3 .image img {
  width: 1200px;
  display: block;
}
.page_3 .image .b {
  display: none;
}
@media (max-width: 1200px) {
  .page_3 .image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .page_3 .image img {
    width: 80%;
  }
}
@media (max-width: 760px) {
  .page_3 {
    background: url(../img/017.jpg);
  }
  .page_3 .image {
    width: 100%;
    padding: 40px 0;
  }
  .page_3 .image .a {
    display: none;
  }
  .page_3 .image .b {
    display: block;
  }
}
.page_4 {
  background: url(../img/008.jpg) no-repeat;
  background-size: cover;
}
.page_4 .product {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-end;
}
.page_4 .product .column_box {
  width: 200px;
}
.page_4 .product .column_box .title {
  width: 200px;
  height: 200px;
  background: url(../img/003.png) no-repeat;
  background-size: 100% 100%;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page_4 .product .column_box .title span {
  display: block;
  width: 80px;
  font-size: 34px;
  color: white;
  text-align: center;
}
.page_4 .product .column_box .column {
  width: calc(100% - 30px);
  padding: 0 15px;
  background-color: rgba(255, 255, 255, 0.84);
}
.page_4 .product .column_box .column a {
  display: block;
  width: 100%;
  padding: 25px 0;
  text-align: center;
  text-decoration: none;
  color: black;
  font-size: 22px;
  border-bottom: 2px solid #ee8400;
}
.page_4 .product .column_box .column a:nth-last-child(1) {
  border-bottom: 0;
}
.page_4 .product .column_box .column a:hover {
  color: white;
  background: url(../img/010.png) no-repeat;
  background-size: 150px 60px;
  background-position: center center;
}
.page_4 .product .column_box .column .column_active {
  color: white;
  background: url(../img/010.png) no-repeat;
  background-size: 150px 60px;
  background-position: center center;
}
.page_4 .product .pro_box {
  width: calc(100% - 380px);
  height: 550px;
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
}
.page_4 .product .pro_box a {
  display: block;
  text-decoration: none;
  width: calc(40% - 20px);
  height: calc((100% - 20px) / 2);
  margin-left: 20px;
  margin-bottom: 20px;
  position: relative;
}
.page_4 .product .pro_box a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page_4 .product .pro_box a span {
  display: block;
  width: calc(100% - 20px);
  padding: 10px 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(255,255,255,0.7);
  color: black;
  font-size: 20px;
  text-align: center;
  /*white-space: nowrap;*/
  /*text-overflow: ellipsis;*/
  /*overflow: hidden;*/
}
.page_4 .product .pro_box a:nth-child(1) {
  width: 60%;
  height: 100%;
  margin-left: 0;
  margin-bottom: 0;
}
.page_4 .product .pro_box a:nth-child(3) {
  margin-bottom: 0;
}
.page_4 .product .pro_box a:nth-child(n+4) {
  display: none;
}
.page_4 .product .more {
  width: 140px;
}
.page_4 .product .more a {
  text-decoration: none;
  display: block;
  width: 100%;
  text-align: center;
  padding: 8px 0;
  font-size: 20px;
  color: white;
  background-color: #ee8400;
}
@media (max-width: 1200px) {
  .page_4 .product {
    width: 760px;
  }
  .page_4 .product .column_box {
    width: 140px;
  }
  .page_4 .product .column_box .title {
    width: 140px;
    height: 140px;
    margin-bottom: 20px;
  }
  .page_4 .product .column_box .title span {
    width: 50px;
    font-size: 24px;
  }
  .page_4 .product .column_box .column {
    width: calc(100% - 20px);
    padding: 0 10px;
  }
  .page_4 .product .column_box .column a {
    padding: 20px 0;
    font-size: 16px;
  }
  .page_4 .product .column_box .column a:hover {
    background-size: 80px 30px;
  }
  .page_4 .product .column_box .column .column_active {
    background-size: 80px 30px;
  }
  .page_4 .product .pro_box {
    width: calc(100% - 150px);
    height: 400px;
  }
  .page_4 .product .more {
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }
  .page_4 .product .more a {
    width: 140px;
    font-size: 18px;
  }
}
@media (max-width: 760px) {
  .page_4 .product {
    width: 90%;
    padding: 40px 0;
  }
  .page_4 .product .column_box {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .page_4 .product .column_box .title {
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
  }
  .page_4 .product .column_box .title span {
    font-size: 22px;
  }
  .page_4 .product .column_box .column {
    display: none;
  }
  .page_4 .product .pro_box {
    width: 100%;
    height: auto;
    flex-flow: row wrap;
  }
  .page_4 .product .pro_box a {
    width: 48%;
    margin-left: 0;
  }
  .page_4 .product .pro_box a span {
    bottom: 0;
    font-size: 16px;
  }
  .page_4 .product .pro_box a:nth-child(1) {
    width: 48%;
    height: auto;
    margin-bottom: 20px;
  }
  .page_4 .product .pro_box a:nth-child(3) {
    margin-bottom: 20p;
  }
  .page_4 .product .pro_box a:nth-child(n+4) {
    display: block;
  }
  .page_4 .product .more {
    width: 100%;
    margin-top: 10px;
  }
  .page_4 .product .more a {
    width: 100px;
    font-size: 16px;
    background-color: #009242;
    border-radius: 20px;
  }
}
@media (max-width: 760px) {
	.page_4 .product .pro_box a span {
    bottom: 0;
    font-size: 14px;
  }
}
.page_5 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 760px) {
  .page_5 {
    display: none!important;
  }
}
.page_6 {
  flex-direction: column;
}
.page_6 .new {
  width: 100%;
  height: calc(100% - 272px);
  background: url(../img/012.jpg) no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page_6 .new .newbox {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page_6 .new .newbox .title {
  width: 220px;
  height: 220px;
  background: url(../img/003.png) no-repeat;
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page_6 .new .newbox .title span {
  display: block;
  width: 80px;
  font-size: 34px;
  color: white;
  text-align: center;
}
.page_6 .new .newbox .new_box {
  width: calc(100% - 260px);
}
.page_6 .new .newbox .new_box a {
  width: calc(100% - 80px);
  padding: 40px;
  background-color: white;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
}
.page_6 .new .newbox .new_box a .text {
  width: 48%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.page_6 .new .newbox .new_box a .text span {
  display: block;
  width: 100%;
  font-weight: 600;
  color: #6d6d6d;
  font-size: 16px;
  text-align: left;
  margin-bottom: 5px;
}
.page_6 .new .newbox .new_box a .text span:nth-child(2) {
  display: none;
}
.page_6 .new .newbox .new_box a .text .more {
  width: 80px;
  background-color: #00562b;
  padding: 10px 0;
  margin-top: 5px;
  border-radius: 30px;
  text-align: center;
  color: white;
  font-size: 12px;
}
.page_6 .new .newbox .new_box a .text strong {
  font-size: 24px;
  margin: 5px 0;
  color: #00562b;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.page_6 .new .newbox .new_box a .text p {
  font-size: 16px;
  color: black;
  margin: 5px 0;
  text-indent: 2em;
  text-align: justify;
  line-height: 22px;
  height: 66px;
  overflow: hidden;
  position: relative;
}
.page_6 .new .newbox .new_box a .text p:after {
  content: "...";
  position: absolute;
  background-color: white;
  text-indent: 0;
  width: 15px;
  color: black;
  height: 22px;
  top: 44px;
  right: 0;
}
.page_6 .new .newbox .new_box a .image_box {
  width: 48%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page_6 .new .newbox .new_box a .image_box .image {
  width: calc(100% - 8px);
  border: 4px solid #efefef;
}
.page_6 .new .newbox .new_box a .image_box .image img {
  width: 100%;
  display: block;
}
.page_6 .new .newbox .new_box a:nth-child(n+2) {
  width: 100%;
  padding: 8px 0;
  background-color: transparent;
  border-radius: 0;
  border-bottom: 2px solid #5e5e5e;
  margin-top: 15px;
}
.page_6 .new .newbox .new_box a:nth-child(n+2) .text {
  width: calc(100% - 30px);
  padding-left: 30px;
  flex-direction: row;
  position: relative;
}
.page_6 .new .newbox .new_box a:nth-child(n+2) .text span {
  display: none;
}
.page_6 .new .newbox .new_box a:nth-child(n+2) .text span:nth-child(2) {
  order: 2;
  display: block;
  width: 100px;
  text-align: center;
  margin-bottom: 0;
}
.page_6 .new .newbox .new_box a:nth-child(n+2) .text .more {
  display: none;
}
.page_6 .new .newbox .new_box a:nth-child(n+2) .text strong {
  width: calc(100% - 110px);
  font-weight: 400;
  order: 1;
  margin: 0;
  color: #6d6d6d;
}
.page_6 .new .newbox .new_box a:nth-child(n+2) .text p {
  display: none;
}
.page_6 .new .newbox .new_box a:nth-child(n+2) .text p:after {
  display: none;
}
.page_6 .new .newbox .new_box a:nth-child(n+2) .text:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  background-color: #2e8f0e;
}
.page_6 .new .newbox .new_box a:nth-child(n+2) .image_box {
  display: none;
}
@media (max-width: 1200px) {
  .page_6 .new .newbox {
    width: 90%;
    margin: 0 5%;
  }
}
@media (max-width: 760px) {
  .page_6 .new {
    height: auto;
    padding: 30px 0;
  }
  .page_6 .new .newbox {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .page_6 .new .newbox .title {
    width: 140px;
    height: 140px;
    margin-bottom: 20px;
  }
  .page_6 .new .newbox .title span {
    width: 50px;
    font-size: 24px;
  }
  .page_6 .new .newbox .new_box {
    width: 100%;
  }
  .page_6 .new .newbox .new_box a {
    width: 90%;
    margin: 0 auto;
    padding: 0;
    flex-direction: column;
    justify-content: center;
  }
  .page_6 .new .newbox .new_box a .text {
    order: 2;
    width: calc(100% - 20px);
    padding: 10px;
    flex-direction: column;
    justify-content: center;
  }
  .page_6 .new .newbox .new_box a .text span {
    display: none;
  }
  .page_6 .new .newbox .new_box a .text span:nth-child(2) {
    display: none;
  }
  .page_6 .new .newbox .new_box a .text .more {
    width: 80px;
    background-color: #2e8f0e;
    padding: 6px 0;
  }
  .page_6 .new .newbox .new_box a .text strong {
    font-size: 18px;
    margin: 5px 0;
    color: #2e8f0e;
  }
  .page_6 .new .newbox .new_box a .image_box {
    order: 1;
    width: 100%;
  }
  .page_6 .new .newbox .new_box a .image_box .image {
    width: 100%;
    border: 0;
  }
  .page_6 .new .newbox .new_box a:nth-child(n+2) {
    margin-top: 8px;
  }
  .page_6 .new .newbox .new_box a:nth-child(n+2) .text {
    width: calc(100% - 24px);
    padding: 0;
    padding-left: 24px;
  }
  .page_6 .new .newbox .new_box a:nth-child(n+2) .text span:nth-child(2) {
    order: 2;
    font-weight: 400;
    font-size: 16px;
  }
  .page_6 .new .newbox .new_box a:nth-child(n+2) .text strong {
    width: calc(100% - 100px);
    order: 1;
    font-size: 18px;
  }
  .page_6 .new .newbox .new_box a:nth-child(n+2) .text:before {
    margin-top: -7px;
    width: 14px;
    height: 14px;
  }
}
.foot {
  width: 100%;
  height: 240px;
  background: url(../img/014.jpg) no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}
.foot .foot_box {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.foot .foot_box .foot1 p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 26px;
  font-weight: 600;
  margin: 0;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.foot .foot_box .foot1 p img {
  width: 20px;
  display: block;
}
.foot .foot_box .foot1 p span {
  display: block;
  margin-left: 10px;
  font-size: 20px;
}
.foot .foot_box .foot1 p:nth-child(1) {
  margin-bottom: 25px;
}
.foot .foot_box .foot1 p:nth-last-child(1) {
  margin-bottom: 0;
}
.foot .foot_box .foot2 {
  display: flex;
  justify-content: center;
}
.foot .foot_box .foot2 .erwei {
  margin: 0 10px;
}
.foot .foot_box .foot2 .erwei img {
  display: block;
  width: 150px;
}
.foot .foot_box .foot2 .erwei span {
  width: 100%;
  display: block;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 1200px) {
  .foot .foot_box {
    width: 90%;
  }
}
@media (max-width: 760px) {
  .foot {
    display: none;
  }
}
.fc_b {
  display: none!important;
}
.fc_c {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 760px) {
  .fc_a {
    display: none!important;
  }
  .fc_b {
    display: flex!important;
  }
}
.foot_copyright {
  width: 100%;
  height: 32px;
  background-color: #5d5d5d;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
  background: url(../img/014.jpg) no-repeat;
  background-size: cover;
}
.foot_copyright .fc {
  text-decoration: none;
  color: white;
  font-size: 12px;
  margin: 0 4px;
}
@media (max-width: 760px) {
  .foot_copyright {
    position: absolute;
    bottom: 70px;
    left: 0;
  }
}
.tabber {
  width: 100%;
  height: 70px;
  display: none;
  justify-content: space-between;
  background-color: #009242;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 60;
}
.tabber .tabber_btn {
  width: 30%;
}
.tabber .tabber_btn a {
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  align-items: center;
  justify-content: center;
}
.tabber .tabber_btn a img {
  width: 30px;
  display: block;
}
.tabber .tabber_btn a span {
  display: block;
  font-size: 12px;
  color: white;
  margin-top: 3px;
}
@media (max-width: 760px) {
  .tabber {
    display: flex;
  }
}
.c_page {
  width: 100%;
  min-height: 100%;
  position: relative;
  padding-bottom: 272px;
}
@media (max-width: 760px) {
  .c_page {
    min-height: calc(100% - 102px);
    padding-bottom: 102px;
  }
}
.header {
  width: 100%;
  padding: 6px 0;
  display: flex;
  justify-content: center;
}
.header img {
  width: 240px;
  display: block;
}
@media (max-width: 760px) {
  .header img {
    width: 150px;
  }
}
.common_image {
  width: 100%;
  min-height: 10px;
}
.common_image img {
  width: 100%;
  display: block;
}
.footposition {
  position: absolute;
  bottom: 32px;
  left: 0;
}
.common {
  width: 100%;
  overflow: hidden;
  padding: 30px 0;
}
.common .commonbox {
  width: 1200px;
  margin: 0 auto;
}
.common .commonbox .common_title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 3px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #676767;
}
.common .commonbox .common_title .ge {
  width: 50px;
  height: 5px;
  background-color: #0262b8;
  margin-top: 5px;
}
@media (max-width: 1200px) {
  .common .commonbox {
    width: 90%;
  }
}
.com_our {
  width: 100%;
}
.com_our .com_our_title {
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: black;
}
.com_our .time {
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #636363;
}
.com_our .com_our_content {
  width: 100%;
  margin-top: 10px;
  text-align: justify;
  text-indent: 2em;
}
.com_our .com_our_content img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
.com_column_box {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.com_column_box .column {
  width: 170px;
  height: 100%;
  padding: 0 15px;
  /*background-color: rgba(255, 255, 255, 0.84);*/
  background-color: #f0f0f0;
  box-shadow: 0 0 2px rgba(0,0,0,0.5);
}
.com_column_box .column a {
  display: block;
  width: 100%;
  padding: 25px 0;
  text-decoration: none;
  text-align: center;
  color: black;
  font-size: 22px;
  border-bottom: 2px solid #ee8400;
}
.com_column_box .column a:nth-last-child(1) {
  border-bottom: 0;
}
.com_column_box .column a:hover {
  color: white;
  background: url(../img/010.png) no-repeat;
  background-size: 150px 60px;
  background-position: center center;
}
.com_column_box .column .column_active {
  color: white;
  background: url(../img/010.png) no-repeat;
  background-size: 150px 60px;
  background-position: center center;
}
.com_column_box .com_content_box {
  width: calc(100% - 220px);
}
@media (max-width: 1200px) {
  .com_column_box {
    flex-direction: column;
    justify-content: center;
  }
  .com_column_box .column {
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 4px 0;
    background-color: transparent;
  }
  .com_column_box .column a {
    width: auto;
    padding: 6px 10px;
    font-size: 16px;
    background-color: #0b8d44;
    margin-right: 15px;
    color: white;
    white-space: nowrap;
    border-bottom: 0;
  }
  .com_column_box .column a:hover {
    background: #f29500;
  }
  .com_column_box .column .column_active {
    background: #f29500;
  }
  .com_column_box .com_content_box {
    width: 100%;
  }
}
.com_product_box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: row wrap;
}
.com_product_box a {
  display: block;
  text-decoration: none;
  width: calc((100% - 40px) / 3);
  margin-right: 20px;
  margin-bottom: 20px;
  /*position: relative;*/
}
.com_product_box a img {
  width: 100%;
  /*height: 100%;*/
  /*object-fit: cover;*/
  display: block;
}
.com_product_box a span {
  display: block;
  width: calc(100% - 20px);
  padding: 5px 10px;
  /*position: absolute;*/
  /*bottom: 0;*/
  /*left: 0;*/
  color: black;
  font-size: 20px;
  text-align: center;
  /*white-space: nowrap;*/
  /*text-overflow: ellipsis;*/
  /*overflow: hidden;*/
  box-shadow: 0 0 4px rgba(0,0,0,0.5);
}
.com_product_box a:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 760px) {
  .com_product_box a {
    width: calc((100% - 10px) / 2);
    margin-right: 10px;
  }
  .com_product_box a:nth-child(3n) {
    margin-right: 10px;
  }
  .com_product_box a:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 760px) {
	.com_product_box a span{
		font-size: 14px;
	}
}
.pagination {
  width: 100%;
  order: 6;
  display: flex;
  justify-content: center;
}
.pagination .btn-group {
  width: 200px;
  margin: 5px 0 20px 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
.pagination .btn-group .pagebtn_a,
.pagination .btn-group .pagebtn_s {
  width: 75px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
.pagination .btn-group .pagebtn_s {
  color: #ebebeb;
  border: 1px solid #bebebe;
  background-color: #bebebe;
}
.pagination .btn-group .pagebtn_a {
  text-decoration: none;
  color: black;
  border: 1px solid #b8b8b8;
  background-color: white;
}
.pagination .btn-group .pagebtn_a:hover {
  background-color: #0b8d44;
  color: white;
  cursor: pointer;
}
.com_new_box {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.com_new_box a {
  width: calc(48% - 40px);
  padding: 20px;
  margin-bottom: 20px;
  background-color: white;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
}
.com_new_box a .text {
  width: 54%;
  display: flex;
  flex-direction: column;
}
.com_new_box a .text span {
  display: block;
  width: 100%;
  font-weight: 600;
  color: #6d6d6d;
  font-size: 15px;
  text-align: left;
  margin-bottom: 5px;
}
.com_new_box a .text strong {
  font-size: 20px;
  margin: 5px 0;
  color: #00562b;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.com_new_box a .text p {
  font-size: 16px;
  color: black;
  margin: 5px 0;
  text-indent: 2em;
  text-align: justify;
  line-height: 22px;
  height: 66px;
  overflow: hidden;
  position: relative;
}
.com_new_box a .text p:after {
  content: "...";
  position: absolute;
  background-color: white;
  text-indent: 0;
  width: 15px;
  color: black;
  height: 22px;
  top: 44px;
  right: 0;
}
.com_new_box a .image_box {
  width: 44%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.com_new_box a .image_box .image {
  width: calc(100% - 8px);
  border: 4px solid #efefef;
}
.com_new_box a .image_box .image img {
  width: 100%;
  display: block;
}
@media (max-width: 760px) {
  .com_new_box a {
    width: 48%;
    padding: 0;
    flex-direction: column;
    justify-content: center;
  }
  .com_new_box a .text {
    order: 2;
    width: calc(100% - 20px);
    padding: 10px;
  }
  .com_new_box a .image_box {
    width: 100%;
    order: 1;
  }
  .com_new_box a .image_box .image {
    width: 100%;
    border: 0;
  }
}
@media (max-width: 760px) {
  .com_new_box a {
    width: 100%;
  }
}
@media (max-width: 760px) {
  .href_btn {
    display: none;
  }
}
